home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / bisonpcb / nullable.c < prev    next >
C/C++ Source or Header  |  1987-02-12  |  3KB  |  132 lines

  1. /* Part of the bison parser generator,
  2.    Copyright (C) 1984 Bob Corbett and Free Software Foundation, Inc.
  3.   
  4. BISON is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the BISON General Public License for full details.
  9.   
  10. Everyone is granted permission to copy, modify and redistribute BISON,
  11. but only under the conditions described in the BISON General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with BISON so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.   
  17.  In other words, you are welcome to use, share and improve this program.
  18.  You are forbidden to forbid anyone else to use, share and improve
  19.  what you give them.   Help stamp out software-hoarding!  */
  20.  
  21. /* set up nullable, a vector saying which nonterminals can expand into the null string.
  22.    nullable[i - ntokens] is nonzero if symbol i can do so.  */
  23.  
  24. /*
  25.  * Port to PC by Whit Gregg
  26.  *               Nourse, Gregg & Browne, Inc.
  27.  *         1 Horizon Road
  28.  *         Fort Lee, NJ  07024
  29.  */
  30.  
  31.  
  32. #include <stdio.h>
  33. #include <malloc.h>
  34. #include "types.h"
  35. #include "gram.h"
  36. #include "new.h"
  37. #include "func.h"
  38.  
  39.  
  40.     char *nullable;
  41.  
  42.  
  43. void 
  44. set_nullable()
  45. {                /* WG */
  46.     register short *r;
  47.     register short *s1;
  48.     register short *s2;
  49.     register int ruleno;
  50.     register int symbol;
  51.     register shorts *p;
  52.  
  53.     short *squeue;
  54.     short *rcount;
  55.     shorts **rsets;
  56.     shorts *relts;
  57.     char any_tokens;
  58.     short *r1;
  59.  
  60. #ifdef    TRACE
  61.     fprintf(stderr, "Entering set_nullable");
  62. #endif
  63.  
  64.     nullable = NEW2(nvars, char) -ntokens;
  65.  
  66.     squeue = NEW2(nvars, short);
  67.     s1 = s2 = squeue;
  68.  
  69.     rcount = NEW2(nrules + 1, short);
  70.     rsets = NEW2(nvars, shorts *) - ntokens;
  71.     relts = NEW2(nitems + nvars + 1, shorts);
  72.     p = relts;
  73.  
  74.     r = ritem;
  75.     while (*r) {
  76.         if (*r < 0) {
  77.             symbol = rlhs[-(*r++)];
  78.             if (!nullable[symbol]) {
  79.                 nullable[symbol] = 1;
  80.                 *s2++ = symbol;
  81.                 }
  82.             }
  83.         else {
  84.             r1 = r;
  85.             any_tokens = 0;
  86.             for (symbol = *r++; symbol > 0; symbol = *r++) {
  87.                 if (ISTOKEN(symbol))
  88.                     any_tokens = 1;
  89.                 }
  90.  
  91.             if (!any_tokens) {
  92.                 ruleno = -symbol;
  93.                 r = r1;
  94.                 for (symbol = *r++; symbol > 0; symbol = *r++) {
  95.                     rcount[ruleno]++;
  96.                     p->next = rsets[symbol];
  97.                     p->value = ruleno;
  98.                     rsets[symbol] = p;
  99.                     p++;
  100.                     }
  101.                 }
  102.             }
  103.         }
  104.  
  105.     while (s1 < s2) {
  106.         p = rsets[*s1++];
  107.         while (p) {
  108.             ruleno = p->value;
  109.             p = p->next;
  110.             if (--rcount[ruleno] == 0) {
  111.                 symbol = rlhs[ruleno];
  112.                 if (!nullable[symbol]) {
  113.                     nullable[symbol] = 1;
  114.                     *s2++ = symbol;
  115.                     }
  116.                 }
  117.             }
  118.         }
  119.  
  120.     FREE(squeue);
  121.     FREE(rcount);
  122.     FREE(rsets + ntokens);
  123.     FREE(relts);
  124.     }
  125.  
  126.  
  127. void 
  128. free_nullable()
  129. {                /* WG */
  130.     FREE(nullable + ntokens);
  131.     }
  132.